home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mambo_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  61 lines

  1. #
  2. #  Written by K-Otik.com <ReYn0@k-otik.com>
  3. #
  4. #  Mambo Site Server 4.0.10 XSS attack
  5. #
  6. #
  7. #  Message-ID: <1642444765.20030319015935@olympos.org>
  8. #  From: Ertan Kurt <ertank@olympos.org> 
  9. #  To: <bugtraq@securityfocus.com>
  10. #  Subject: Some XSS vulns </archive/1/315554/2003-03-19/2003-03-25/1>
  11. #
  12.  
  13. if (description)
  14. {
  15.  script_id(11441);
  16.  script_bugtraq_id(7135);
  17.  script_version ("$Revision: 1.9 $");
  18.  
  19.  script_name(english:"Mambo Site Server 4.0.10 XSS");
  20.  desc["english"] = "
  21. Mambo Site Server is an open source Web Content Management System. An attacker 
  22. may use it to perform a cross site scripting attack on this host.
  23.  
  24.  
  25. Solution: Upgrade to a newer version.
  26. Risk factor : Medium";
  27.  
  28.  script_description(english:desc["english"]);
  29.  script_summary(english:"Determine if Mambo Site Server is vulnerable to xss attack");
  30.  script_category(ACT_GATHER_INFO);
  31.  script_family(english:"CGI abuses : XSS", francais:"Abus de CGI");
  32.  script_copyright(english:"This script is Copyright (C) 2003 k-otik.com");
  33.  script_dependencie("find_service.nes", "http_version.nasl", "cross_site_scripting.nasl");
  34.  script_require_ports("Services/www", 80);
  35.  exit(0);
  36. }
  37.  
  38. include("http_func.inc");
  39. include("http_keepalive.inc");
  40.  
  41. port = get_http_port(default:80);
  42.  
  43. if(!get_port_state(port))exit(0);
  44. if(get_kb_item(string("www/", port, "/generic_xss"))) exit(0);
  45. if(!can_host_php(port:port)) exit(0);
  46.  
  47.  
  48. foreach d (cgi_dirs())
  49. {
  50.  url = string(d, "/index.php?option=search&searchword=<script>alert(document.cookie);</script>");
  51.  req = http_get(item:url, port:port);
  52.  buf = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  53.  if( buf == NULL ) exit(0);
  54.  
  55.  if ( "<script>alert(document.cookie);</script>" >< buf)
  56.    {
  57.     security_warning(port);
  58.     exit(0);
  59.    }
  60. }
  61.